home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 1 (Walnut Creek)
/
Aminet - June 1993 [Walnut Creek].iso
/
aminet
/
gfx
/
show
/
mpeg_player122.lha
/
src
/
util32.c
< prev
next >
Wrap
C/C++ Source or Header
|
1992-12-08
|
2KB
|
70 lines
#include <stdio.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
/*
* Return a pointer to a full color bit visual on the dpy
*/
Visual *
FindFullColorVisual (dpy, depth)
Display *dpy;
int *depth;
{
XVisualInfo vinfo;
XVisualInfo *vinfo_ret;
int numitems, maxdepth;
vinfo.class = TrueColor;
vinfo_ret = XGetVisualInfo(dpy, VisualClassMask, &vinfo, &numitems);
if (numitems == 0) return NULL;
maxdepth = 0;
while(numitems > 0) {
if (vinfo_ret[numitems-1].depth > maxdepth) {
maxdepth = vinfo_ret[numitems-1 ].depth;
}
numitems--;
}
XFree(vinfo_ret);
if (maxdepth < 24) return NULL;
if (XMatchVisualInfo(dpy, DefaultScreen(dpy), maxdepth,
TrueColor, &vinfo)) {
*depth = maxdepth;
return vinfo.visual;
}
return NULL;
}
Window
CreateFullColorWindow (dpy, x, y, w, h)
Display *dpy;
int x, y, w, h;
{
int depth;
Visual *visual;
XSetWindowAttributes xswa;
unsigned int mask;
unsigned int class;
int screen;
screen = XDefaultScreen(dpy);
class = InputOutput; /* Could be InputOnly */
visual = FindFullColorVisual (dpy, &depth);
if (visual == NULL) {
return 0;
}
mask = CWBackPixel | CWColormap | CWBorderPixel;
xswa.colormap = XCreateColormap(dpy, XRootWindow(dpy, screen),
visual, AllocNone);
xswa.background_pixel = BlackPixel(dpy, DefaultScreen(dpy));
xswa.border_pixel = WhitePixel(dpy, DefaultScreen(dpy));
return XCreateWindow(dpy, RootWindow(dpy, screen), x, y, w, h,
1, depth, class, visual, mask, &xswa);
}